home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #2 / Monster Media No. 2 (Monster Media)(1994).ISO / prog_bas / codemgr.zip / README.TXT < prev    next >
Text File  |  1994-06-05  |  2KB  |  75 lines

  1. Code Manager (CM) was designed to be a librarian for 
  2. Visual Basic Routines. During my career as a
  3. VB programmer, I found myself hunting for routines
  4. I had already written.
  5.  
  6. Code Manager consolidates selected routines in one place,
  7. providing maximum resuability.
  8.  
  9. Code Manager is provided as shareware.
  10.  
  11.  
  12. SETUP
  13. -----------------------------
  14. The setup program will install the following files
  15. in the indicated directories. The setup program 
  16. will NOT overwrite newer system files.
  17.  
  18. NOTE
  19. -----------------------------
  20. The files in the Windows\System directory may be 
  21. required by other programs!!!!!!!!
  22.  
  23. Use discretion when deleting them!!!!!!!!
  24. -----------------------------
  25. SUPPLIED    Suggested
  26. FILES        Directory
  27. -----------------------------
  28. CODEMGR.EXE    \CODEMGR
  29. CODEMGR.MDB    \CODEMGR
  30. CODEMGR.INI    \WINDOWS
  31. README.TXT    \CODEMGR
  32. VBDB300.DLL    C:\WINDOWS\SYSTEM
  33. MSAES110.DLL    C:\WINDOWS\SYSTEM
  34. MSAJT110.DLL    C:\WINDOWS\SYSTEM
  35. -----------------------------
  36.  
  37.  
  38. USAGE
  39. -----------------------------
  40. You must enter the routines into CM before use. A future release
  41. will automatically list, locate and insert existing
  42. code from any .BAS or .FRM file for you (if it's saved as text).
  43.  
  44. 1. Select the "NEW" button
  45. 2. Enter the routines name.
  46. 3. Enter a description of the routine.
  47. 4. Enter the code for the routine.
  48.     Make sure to wrap the code with 
  49.     SUB/END SUB or FUNCTION/END FUNCTION
  50.     statements
  51.  
  52. If you wish, you may use the clipboard to enter the 
  53. required information from existing code 
  54. (that's what it's all about, right?). 
  55. When the required data has been
  56. entered, press the "OK" button and the entry is automatically saved.
  57.  
  58. When CM starts, it will fill a listbox of available
  59. routines. Clicking on an entry in the listbox will
  60. display the routines' associated description and code.
  61.  
  62. Both the description and code may be edited and saved. 
  63.  
  64. Pressing the "CUT" button will copy the routines' name,
  65. description and code to the clipboard.
  66.  
  67. To insert the code into your application:
  68.  
  69. 1. Make sure that you are in the declarations 
  70.     section of the form
  71. 2. Paste the clipboard contents into the application.
  72.     The description and any variable definitions will stay in
  73.     the declarations section and the code will be separated by
  74.     Visual Basic.
  75. -----------------------------